home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic Toolbox / Visual Basic Toolbox (P.I.E.)(1996).ISO / mail / mailx6 / _setup.1 / DEMOX.DPR < prev    next >
Encoding:
Text File  |  1996-02-12  |  290 b   |  16 lines

  1. program Demox;
  2.  
  3. uses
  4.   Forms,
  5.   Main in 'MAIN.PAS' {MainForm},
  6.   Childwin in 'CHILDWIN.PAS' {MDIChild},
  7.   Openmsg in 'OPENMSG.PAS' {MsgForm},
  8.   Mailsys3 in 'MAILSYS3.PAS' {MailSystem};
  9.  
  10. {$R *.RES}
  11.  
  12. begin
  13.   Application.CreateForm(TMainForm, MainForm);
  14.   Application.Run;
  15. end.
  16.